00001 #ifndef FRP_H_ 00002 #define FRP_H_ 00003 00004 #include "common/N.h" 00005 #include "frp/C.h" 00006 #include "frp/F.h" 00007 00014 class FRP 00015 { 00016 private: 00017 N *n; 00018 C *c; 00019 F *f; 00020 public: 00021 FRP(); 00022 int decompose(char *receivingMessage); 00023 N *getN(); 00024 C *getC(); 00025 F *getF(); 00026 virtual ~FRP(); 00027 }; 00028 00029 #endif /* FRP_H_ */